home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 [x86] / NeXT Step 3.1 Intel.cdr.dmg / me / .cshrc < prev    next >
Text File  |  1993-04-23  |  477b  |  20 lines

  1. #
  2. # this file gets executed by every shell you start
  3. #
  4.  
  5. # make sure the path is correct
  6. set path=(~/Unix/bin /usr/local/bin /usr/ucb /bin /usr/bin /usr/sybase/bin ~/Apps /LocalApps /NextApps /NextAdmin /NextDeveloper/Demos .)
  7.  
  8. # setup umask to something reasonable
  9. umask 022
  10.  
  11. # make the prompt palatable
  12. if( ${?prompt} ) then
  13.     set host=`hostname`
  14.     set prompt="${host}> "
  15.     set history=50
  16.     # put aliases and other things down here
  17.     alias ls ls -F
  18.     alias mail /usr/ucb/Mail
  19. endif
  20.